Toast功能是可以在螢幕的下方顯示一段即時的訊息文字
但文字會在幾秒後消失
在Toast跳出來時,並不會影響使用者操作APP
Toast搭配makeTake使用
可以依照你要的訊息、T顯示時間長短建立
這個功能可以不用拉任何元件出來,就可以顯示
但這邊位的方便查看功能是否正常
拉一個按鈕Button出來
使用點一下事件處理驗證Toast功能是否成功
拉一個Button出來就好瞜
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<Button
android:id="@+id/btn_toast"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Toast測試"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
這邊要新增一個事件:
1.熟悉的Button的setOnClickListener()
然後在裡面寫Toast.makeText()
Toast.makeText(MainActivity.this,"成功",Toast.LENGTH_LONG).show();
"成功":為你想顯示的文字內容
Toast.LENGTH_LONG:為你想讓它顯示於螢幕的時間
有兩種時長:Toast.LENGTH_LONG(3.5秒)、Toast.LENGTH_SHORT(2秒)
完整程式:
package com.example.listview;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button btn_toast = findViewById(R.id.btn_toast);
btn_toast.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Toast.makeText(MainActivity.this,"成功",Toast.LENGTH_SHORT).show();
}
});
}
}
執行結果: